home *** CD-ROM | disk | FTP | other *** search
- echo off
- cls
- echo This is a demonstration of OPTION.COM
- :core
- echo
- echo MENU
- echo A) Read the documentation
- echo B) Read this batch file
- echo C) Return to DOS
- option A1a1B2b2C3c3- Please enter your choice: A, B, or C -
- echo Wait . . .
- if errorlevel 3 goto end
- if errorlevel 2 goto bat
- if errorlevel 1 goto doc
- goto core
- :doc
- type option.doc
- pause
- goto core
- :bat
- type testopt.bat
- pause
- goto core
- :end
-
-